Bestsoft ID:
Password:  


Dash

Start writting your Operating System now in Dash by Downloading Bestsoft Space IDE Download

Function that get into 0x13 Graphic Mode and Draw pixels.
In following example are displayed single pixel printing(white) on location 1(x location) 2(y location);
"Graphic.Draw.Line.Pixel = 1 2 < 50 Red" drawing line which is 50 pixels long ( < 50);
"Graphic.Draw.Line.Pixel = 1 2 < 20 Red" drawing row which is 20 pixels long ( < 20).


Import Bestsoft.Dash


Class Kernel
     Start_Sub()
         GraphicMode()
         Graphic.Draw.Pixel = 1 2 White

         Graphic.Draw.Line.Pixel = 1 2 < 50 Red
         Graphic.Draw.Row.Pixel = 1 2 < 20 Red

     End_Start_Sub

    Create.New.sub block
   go to block

End_Class